home *** CD-ROM | disk | FTP | other *** search
- #!/usr/bin/env python
-
-
- ### BITPIM
- ###
- ### Copyright (C) 2003 Roger Binns <rogerb@rogerbinns.com>
- ###
- ### This software is under the Artistic license.
- ### http://www.opensource.org/licenses/artistic-license.php
- ###
- ### $Id: bp.py,v 1.4 2003/08/22 10:51:02 rogerb Exp $
-
- """Main entry point to Bitpim
-
- It invokes BitPim in gui or commandline mode as appropriate
-
- @Note: Only gui mode is supported at the moment
- """
-
- # only gui mode support at the moment
-
- if __name__ == '__main__':
- import sys
- import gui
-
- gui.run(sys.argv)
-